home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot.new / h / pginit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-19  |  487 b   |  20 lines

  1.  
  2. /*    @(#)pginit.h 1.1 86/09/27 SMI    */
  3.  
  4. /*
  5.  * Copyright (c) 1986 by Sun Microsystems, Inc.
  6.  */
  7.  
  8. /*
  9.  * pginit.h -- structure used to define large page map areas for initialization
  10.  */
  11. struct pginit {
  12.     char        *pi_addr;    /* Virtual address to map at */
  13.     unsigned short    pi_incr;    /* page # increment each time */
  14.     struct pgmapent    pi_pm;        /* The first page map entry */
  15. };
  16.  
  17. #define PGINITEND    0x8000        /* incr value to end table */
  18. #define PGINITSKIP    0x8001        /* incr value to skip to next entry */
  19.  
  20.